home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / fddev202.arc / PASCAL.ARC / REQUEST.INC < prev    next >
Text File  |  1991-10-01  |  990b  |  32 lines

  1. (*
  2. **  Request.Inc (FrontDoor)
  3. **
  4. **  Copyright 1991 Joaquim H. Homrighausen. All rights reserved.
  5. **
  6. **  REQUEST.FD format for FrontDoor 2.00+
  7. **
  8. **  Last revision:  91-10-02
  9. **                            
  10. **  -------------------------------------------------------------------------
  11. **  This information is not necessarily final and is subject to change at any
  12. **  given time without further notice
  13. **  -------------------------------------------------------------------------
  14. *)
  15.  
  16. CONST
  17.   ACTIVE   = $01;
  18.   DELETED  = $02;                                  (* Never written to disk *)
  19.  
  20.  
  21. (*
  22. **  The "filename" and "password" fields are NUL terminated.
  23. *)
  24. TYPE
  25.   RequestRec = RECORD
  26.     FileName : Array[1..41] of char;  (* Filename or unique portion thereof *)
  27.     Password : Array[1..17] of char;                            (* Password *)
  28.     Status   : byte;                                         (* 0==Inactive *)
  29.   End;
  30.  
  31. (* end of file "Request.Inc" *)
  32.